-
-
Notifications
You must be signed in to change notification settings - Fork 283
custom app integration possible? #424
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
Transformer Lab is made up of a React app front end (transformerlab-app) talking to a python engine backend (transformerlab-api) that does all of the work. So most things that the app does are possible to do programmatically via API. If you are running Transformer Lab on your computer you can see the API docs by going to http://localhost:8338/docs . e.g. In the case of fine-tuning, you need to first create a template for a fine-tune (doing this in the app might be easier). Then if you want to trigger a fine-tune you just need to create a new job with that template (you can do this over and over, possibly updating the template between calls). If you're interested in doing this i would recommend joining out discord and somebody can maybe help you with any unclear details (the docs are quite lean). We are also working on new workflow features that will make this more flexible...coming soon! |
Hi @itsPreto, |
Hey guys, first off I just want to extend my kudos because the project is sweet! I've used it several times for experiments on my m1 and love how accessible it is. I’m working on an Ollama-based system that: With goals to: Some example use cases would be: Essentially-- Is there a recommended way to automate this using your backend? Also, curious how upcoming workflow features might support this. Thanks for the great work. |
is there any way to access the fine-tuning features programmatically? I want to prepare the dataset and template and just call
start_finetuning()
or somethingThe text was updated successfully, but these errors were encountered: